forum

home / developersection / forums / jquery get multiple nodes with same name in xml

jQuery get multiple nodes with same name in xml

Anonymous User 2830 06-Nov-2014

I have a part of an XML file that looks like this:

<paymentTypes>
<paymentType>type1</paymentType>
<paymentType>type2</paymentType>
<paymentType>type3</paymentType>
<paymentType>type4</paymentType>
</paymentTypes>

The thing is that I want to get it via ajax jQuery, but if I try this:

var paymentTypes = $(xml).find("paymentTypes").text() 

the output will be type1type2type3type4.

What function should I use(built-in or should I write it) in order to get the results on separate lines?


Updated on 06-Nov-2014

I am a content writter !

Can you answer this question?

Answer

1 Answers

Liked By